home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / misc_src / knowhow4 / meter.h < prev    next >
C/C++ Source or Header  |  1995-11-01  |  294b  |  13 lines

  1. #ifndef __METER_H_
  2. #define __METER_H_
  3.  
  4. #include "element.h"
  5.  
  6. struct Meter
  7.     {
  8.     void show_meter(rect r, int attr, int bak, uchar* pat);
  9.     void show(loc pos, int len, int direction, int cursor = 0, int pat = 0,
  10.               BORDERS type = NO_BORDER);
  11.     };
  12.  
  13. #endif __METER_H_